home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form1
- Caption = "Form1"
- ClientHeight = 4200
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 5280
- LinkTopic = "Form1"
- ScaleHeight = 4200
- ScaleWidth = 5280
- StartUpPosition = 3 'Windows Default
- Begin VB.HScrollBar HScroll1
- Height = 375
- Left = 1620
- TabIndex = 9
- Top = 3720
- Width = 1635
- End
- Begin VB.PictureBox Picture1
- Height = 735
- Left = 180
- ScaleHeight = 675
- ScaleWidth = 1515
- TabIndex = 8
- Top = 2640
- Width = 1575
- End
- Begin VB.CheckBox Check1
- Caption = "Just a sample checkbox"
- Height = 555
- Left = 2640
- TabIndex = 5
- Top = 2040
- Width = 2115
- End
- Begin Project1.UserControl1 UserControl12
- Height = 1215
- Left = 240
- TabIndex = 4
- Top = 300
- Width = 975
- _ExtentX = 1720
- _ExtentY = 2143
- MaskPicture = "IrregWindow.frx":0000
- Picture = "IrregWindow.frx":0456
- End
- Begin VB.CommandButton Command4
- Caption = "HIDE ME!"
- Height = 435
- Left = 60
- TabIndex = 3
- Top = 3660
- Width = 1155
- End
- Begin VB.CommandButton Command2
- Caption = "A Button"
- Height = 555
- Left = 2760
- TabIndex = 2
- Top = 240
- Width = 2115
- End
- Begin VB.CommandButton Command3
- Caption = "Yet Another Button"
- Height = 855
- Left = 3480
- TabIndex = 1
- Top = 2880
- Width = 1695
- End
- Begin VB.CommandButton Command1
- Caption = "'Nother button"
- Height = 675
- Left = 2760
- TabIndex = 0
- Top = 1020
- Width = 2115
- End
- Begin VB.Label Label3
- Caption = "Sample dummy controls."
- Height = 795
- Left = 1920
- TabIndex = 10
- Top = 2820
- Width = 1275
- End
- Begin VB.Label Label2
- Caption = "<< Double click on him! Drag him around. Double click again to get him back into the form!"
- Height = 2175
- Left = 1260
- TabIndex = 7
- Top = 480
- Width = 1155
- End
- Begin VB.Label Label1
- Caption = "My ULTIMATE Toy!"
- Height = 795
- Left = 360
- TabIndex = 6
- Top = 1560
- Width = 795
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command4_Click()
- Me.Hide
- End Sub
- Private Sub Form_MouseDown(Button As Integer, Shift As Integer, x As Single, y As Single)
- ReleaseCapture
- SendMessage Me.hwnd, 161, 2, 0
- End Sub
- Private Sub Form_Paint()
- Form1.Line (0, 0)-(Form1.Width, Form1.Height), &HFF, BF
- End Sub
- Private Sub Label4_Click()
- End Sub
-